ComponentOne FlexGrid for UWP
C1.UWP Assembly / C1.Xaml Namespace / CustomConverter Class / Create Method / Create(Func<Object,Type,Object,String,Object>,Func<Object,Type,Object,String,Object>) Method
The converter function. (value, type, parameter, culture)
The convert back function. (value, type, parameter, culture)
Example

In This Topic
    Create(Func<Object,Type,Object,String,Object>,Func<Object,Type,Object,String,Object>) Method
    In This Topic
    Creates the specified converter function.
    Syntax

    Parameters

    converterFunction
    The converter function. (value, type, parameter, culture)
    converterBackFunction
    The convert back function. (value, type, parameter, culture)

    Return Value

    The converted value
    Example
    var converter = CustomConverter.Create((value, type, parameter, culture)=>
    {
        return; //Put the converter code here
    });
    See Also